home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
progs
/
editor
/
frexxed
/
fpl
/
automatch.fpl
< prev
next >
Wrap
Text File
|
1995-07-18
|
444b
|
17 lines
export void AutoMatch(string paren)
{
Output(paren); // Output the character
CursorLeft(1); // Step back to the character
if (MatchParen()>=0) { // Try to match it
Delay(4); // Make a delay
MatchParen(); // Match it back
} else
ReturnStatus("No match!"); // No match!
CursorRight(1); // Step forward
}
AssignKey("AutoMatch(\")\");", ")");
AssignKey("AutoMatch(\"}\");", "}");
AssignKey("AutoMatch(\"]\");", "]");